home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / nosvw137.zip / TRACE < prev    next >
Text File  |  1991-09-18  |  2KB  |  54 lines

  1. =====                                               NOSview [137]
  2. trace
  3. =====
  4.  
  5. _________________________________________________________________
  6. trace [<interface> [off | <BTIO_flags> [<tracefile>]]]
  7. _________________________________________________________________
  8. Controls packet tracing by the interface drivers.
  9.  
  10. The Broadcast/Type/Input/Output (BTIO) flag settings specify the
  11. amount of information produced.
  12.  
  13. Tracing is controlled on a per-interface basis; without
  14. arguments, 'trace' gives a list of all defined interfaces and
  15. their tracing status.
  16.  
  17. The BTIO settings are expressed as a hexadecimal number as
  18. follows:
  19.  
  20. B=1:  Broadcast filter flag enabled.  Only packets specifically
  21.       addressed to this interface will be displayed.  Broadcast
  22.       packets will be ignored.
  23.  
  24. B=0:  Broadcast filter flag disabled.
  25.  
  26. T=2:  Protocol headers are decoded, and the entire packet
  27.       (headers AND data) is also displayed in hexadecimal
  28.       and ASCII, 16 characters per line.  Unprintable characters
  29.       are displayed as dots.
  30.  
  31. T=1:  Protocol headers are decoded, and data (but not the
  32.       headers themselves) are displayed as ASCII characters,
  33.       64 characters/line.
  34.  
  35. T=0:  Protocol headers are decoded, but data is not displayed.
  36.  
  37. I=1:  Enable tracing of input packets.
  38.  
  39. I=0:  Disable tracing of input packets.
  40.  
  41. O=1:  Enable tracing of output packets.
  42.  
  43. O=0:  Disable tracing of output packets.
  44.  
  45. By default, trace output is displayed on the screen.
  46.  
  47. If a <trace_filename> is given, trace output is saved in the
  48. specified file.  The trace file is closed by setting the BTIO
  49. flags to 000.
  50.  
  51. >> Examples: trace tnc0 211            (full trace, on screen)
  52.              trace tnc0 211 tnc0.trc   (save trace in 'tnc0.trc')
  53.              trace tnc0 0              (stop trace & close file)
  54.